home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 84 / MOBICLIC 84.ISO / pc / DATA / INTRO / INTRO.dir / 00004_Script_CHARGEMENT DES XTRAS < prev    next >
Text File  |  2006-02-09  |  4KB  |  90 lines

  1. global gLien
  2. -----------------------------------------
  3.  
  4. on exitFrame me
  5.   zeLabel = the frameLabel
  6.   
  7.   case(gLien) of
  8.     "\" :-- Windows
  9.       case(zeLabel) of
  10.         1:
  11.           openXlib the pathName & "XTRAS\SPECIAL XTRAS Win\FileXtra4.x32"
  12.           openXlib the pathName & "XTRAS\SPECIAL XTRAS Win\AudioXtra.x32"
  13.           openXlib the pathName & "XTRAS\SPECIAL XTRAS Win\resaudio.x32"
  14.           openXlib the pathName & "XTRAS\SPECIAL XTRAS Win\JPEGXtra.x32"
  15.           openXlib the pathName & "XTRAS\SPECIAL XTRAS Win\PrintOMatic MX.x32"
  16.         2:
  17.           openXlib the pathName & "XTRAS\FileIo.x32"
  18.           openXlib the pathName & "XTRAS\Cursor Asset.x32"
  19.           openXlib the pathName & "XTRAS\Cursor Options.x32"
  20.           openXlib the pathName & "XTRAS\MPEG 3 Import Export.x32"
  21.         3:
  22.           openXlib the pathName & "XTRAS\Flash Agent.x32"
  23.           openXlib the pathName & "XTRAS\Flash Asset Options.x32"
  24.           openXlib the pathName & "XTRAS\Flash Asset.x32"
  25.           openXlib the pathName & "XTRAS\INetURL.x32"
  26.         4:
  27.           openXlib the pathName & "XTRAS\Font Asset Dialog.x32"
  28.           openXlib the pathName & "XTRAS\Font Asset.x32"
  29.           openXlib the pathName & "XTRAS\Font Xtra.x32"
  30.           openXlib the pathName & "XTRAS\Mix Services.x32"
  31.         5:
  32.           openXlib the pathName & "XTRAS:TextAuth.x32"
  33.           openXlib the pathName & "XTRAS:Text Asset.x32"
  34.           openXlib the pathName & "XTRAS:TextXtra.x32"
  35.       end case
  36.        
  37.     ":":-- Mac
  38.       case(zeLabel) of
  39.         1:
  40.           case(value(the productVersion.char[1]) < 9) of
  41.             0:-- ΘxΘcutable MX (director 9 et plus)
  42.               openXlib the pathName & "XTRAS:SPECIAL XTRAS Mac OSX:FileXtra4 (Carbon)"
  43.               openXlib the pathName & "XTRAS:SPECIAL XTRAS Mac OSX:Audio Xtra"
  44.               openXlib the pathName & "XTRAS:SPECIAL XTRAS Mac OSX:JPEGXtra.carb"
  45.               openXlib the pathName & "XTRAS:SPECIAL XTRAS Mac OSX:PrintOMatic MX"
  46.             1:-- ΘxΘcutable Director non MX (version 8.5 au plus)
  47.               
  48.           end case
  49.         2:
  50.           case(value(the productVersion.char[1]) < 9) of
  51.             0:-- ΘxΘcutable MX (director 9 et plus)
  52.               openXlib the pathName & "XTRAS:FileIO PPC Xtra"
  53.               openXlib the pathName & "XTRAS:Cursor Asset"
  54.               openXlib the pathName & "XTRAS:Cursor Options"
  55.               openXlib the pathName & "XTRAS:MPEG 3 Import Export"
  56.             1:-- ΘxΘcutable Director non MX (version 8.5 au plus)
  57.               
  58.           end case
  59.         3:
  60.           case(value(the productVersion.char[1]) < 9) of
  61.             0:-- ΘxΘcutable MX (director 9 et plus)
  62.               openXlib the pathName & "XTRAS:Flash Agent"
  63.               openXlib the pathName & "XTRAS:Flash Asset Options PPC"
  64.               openXlib the pathName & "XTRAS:Flash Asset PPC"
  65.               openXlib the pathName & "XTRAS:InetUrl PPC Xtra"
  66.             1:-- ΘxΘcutable Director non MX (version 8.5 au plus)
  67.               
  68.           end case
  69.         4:
  70.           case(value(the productVersion.char[1]) < 9) of
  71.             0:-- ΘxΘcutable MX (director 9 et plus)
  72.               openXlib the pathName & "XTRAS:Font Asset Dialog"
  73.               openXlib the pathName & "XTRAS:Font Asset PPC"
  74.               openXlib the pathName & "XTRAS:Font Xtra PPC"
  75.               openXlib the pathName & "XTRAS:Mix Services"
  76.             1:-- ΘxΘcutable Director non MX (version 8.5 au plus)
  77.               
  78.           end case
  79.         5:
  80.           case(value(the productVersion.char[1]) < 9) of
  81.             0:-- ΘxΘcutable MX (director 9 et plus)
  82.               openXlib the pathName & "XTRAS:Text Asset Options"
  83.               openXlib the pathName & "XTRAS:TextAsset PPC"
  84.               openXlib the pathName & "XTRAS:TextXtra PPC"
  85.             1:-- ΘxΘcutable Director non MX (version 8.5 au plus)
  86.               
  87.           end case   
  88.       end case
  89.   end case    
  90. end